hangman.java
Language: Java
Last Modified: 2020-06-27 1:58:33 PM UTC
File Size: 1283 bytes
Last Modified: 2020-06-27 1:58:33 PM UTC
File Size: 1283 bytes
http://www.penguinstew.ca/example/hangman/hangman.java
publicclasshangman{
publicstaticvoidmainString[]argsthrowsException{
wordListwList=newwordList;
wordalphabet=newword;
wordgame;
manhMan=newman;
booleanreplay=true;
booleanfound=false;
charguess;
whilereplay{
replay=false;
game=wListnewWord;
alphabetreset;
hManreset;
found=false;
whilefound{
hManprintMan;
gameprint;
Systemoutprintln;
alphabetprintNoline;
SystemoutprintlnTypealettertoguess;
guess=charSysteminread;
Systeminskip1024;
ifalphabettestGuessguessgametryGuessguess{
hManincrease;
}
ifgametest{
hManprintMan;
gameprint;
Systemoutprintln;
SystemoutprintlnYOUHAVEWON;
found=true;
}elseifhMandeath{
hManprintMan;
gameprintAll;
Systemoutprintln;
SystemoutprintlnYOUHAVELOSTBOOO;
found=true;
}
}
Systemoutprintln;
SystemoutprintlnDoyouwanttoplayagain?;
guess=charSysteminread;
Systeminskip1024;
ifguess==y||guess==Y{
replay=true;
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54